home *** CD-ROM | disk | FTP | other *** search
/ Digitální fotografie a video / Digitalni-fotografie-a-video-covermount.bin / Aplikace / DF / Kap_4 / Menu.dxr / 00003_Skok znacka.ls < prev    next >
Encoding:
Text File  |  1998-05-19  |  917 b   |  41 lines

  1. property Znacka
  2.  
  3. on getPropertyDescriptionList
  4.   set description to [:]
  5.   addProp(description, #Znacka, [#comment: "Zancka:", #format: #string, #default: EMPTY])
  6.   return description
  7. end
  8.  
  9. on getBehaviorDescription
  10.   return "N├íjezd a klik"
  11. end
  12.  
  13. on beginSprite me
  14.   set the visible of sprite the spriteNum of me to 1
  15.   set the visible of sprite (the spriteNum of me + 1) to 0
  16. end
  17.  
  18. on endSprite me
  19.   set the visible of sprite the spriteNum of me to 1
  20.   set the visible of sprite (the spriteNum of me + 1) to 0
  21. end
  22.  
  23. on mouseEnter me
  24.   puppetSound(1, "Najezd")
  25.   set the cursor of sprite the spriteNum of me to [member "ruka_1", member "ruka_2"]
  26.   set the visible of sprite (the spriteNum of me + 1) to 1
  27. end
  28.  
  29. on mouseLeave me
  30.   set the visible of sprite (the spriteNum of me + 1) to 0
  31.   set the cursor of sprite the spriteNum of me to -1
  32. end
  33.  
  34. on mouseDown me
  35.   puppetSound(1, "Klik")
  36. end
  37.  
  38. on mouseUp me
  39.   go(Znacka)
  40. end
  41.